home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / arm / plat-omap / include / mach / board.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  4.1 KB  |  189 lines

  1. /*
  2.  *  arch/arm/plat-omap/include/mach/board.h
  3.  *
  4.  *  Information structures for board-specific data
  5.  *
  6.  *  Copyright (C) 2004    Nokia Corporation
  7.  *  Written by Juha Yrj√∂l√§ <juha.yrjola@nokia.com>
  8.  */
  9.  
  10. #ifndef _OMAP_BOARD_H
  11. #define _OMAP_BOARD_H
  12.  
  13. #include <linux/types.h>
  14.  
  15. #include <mach/gpio-switch.h>
  16.  
  17. /* Different peripheral ids */
  18. #define OMAP_TAG_CLOCK        0x4f01
  19. #define OMAP_TAG_MMC        0x4f02
  20. #define OMAP_TAG_SERIAL_CONSOLE 0x4f03
  21. #define OMAP_TAG_USB        0x4f04
  22. #define OMAP_TAG_LCD        0x4f05
  23. #define OMAP_TAG_GPIO_SWITCH    0x4f06
  24. #define OMAP_TAG_UART        0x4f07
  25. #define OMAP_TAG_FBMEM        0x4f08
  26. #define OMAP_TAG_STI_CONSOLE    0x4f09
  27. #define OMAP_TAG_CAMERA_SENSOR    0x4f0a
  28.  
  29. #define OMAP_TAG_BOOT_REASON    0x4f80
  30. #define OMAP_TAG_FLASH_PART    0x4f81
  31. #define OMAP_TAG_VERSION_STR    0x4f82
  32.  
  33. struct omap_clock_config {
  34.     /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
  35.     u8 system_clock_type;
  36. };
  37.  
  38. struct omap_mmc_conf {
  39.     unsigned enabled:1;
  40.     /* nomux means "standard" muxing is wrong on this board, and that
  41.      * board-specific code handled it before common init logic.
  42.      */
  43.     unsigned nomux:1;
  44.     /* switch pin can be for card detect (default) or card cover */
  45.     unsigned cover:1;
  46.     /* 4 wire signaling is optional, and is only used for SD/SDIO */
  47.     unsigned wire4:1;
  48.     /* use the internal clock */
  49.     unsigned internal_clock:1;
  50.     s16 power_pin;
  51.     s16 switch_pin;
  52.     s16 wp_pin;
  53. };
  54.  
  55. struct omap_mmc_config {
  56.     struct omap_mmc_conf mmc[2];
  57. };
  58.  
  59. struct omap_serial_console_config {
  60.     u8 console_uart;
  61.     u32 console_speed;
  62. };
  63.  
  64. struct omap_sti_console_config {
  65.     unsigned enable:1;
  66.     u8 channel;
  67. };
  68.  
  69. struct omap_camera_sensor_config {
  70.     u16 reset_gpio;
  71.     int (*power_on)(void * data);
  72.     int (*power_off)(void * data);
  73. };
  74.  
  75. struct omap_usb_config {
  76.     /* Configure drivers according to the connectors on your board:
  77.      *  - "A" connector (rectagular)
  78.      *    ... for host/OHCI use, set "register_host".
  79.      *  - "B" connector (squarish) or "Mini-B"
  80.      *    ... for device/gadget use, set "register_dev".
  81.      *  - "Mini-AB" connector (very similar to Mini-B)
  82.      *    ... for OTG use as device OR host, initialize "otg"
  83.      */
  84.     unsigned    register_host:1;
  85.     unsigned    register_dev:1;
  86.     u8        otg;    /* port number, 1-based:  usb1 == 2 */
  87.  
  88.     u8        hmc_mode;
  89.  
  90.     /* implicitly true if otg:  host supports remote wakeup? */
  91.     u8        rwc;
  92.  
  93.     /* signaling pins used to talk to transceiver on usbN:
  94.      *  0 == usbN unused
  95.      *  2 == usb0-only, using internal transceiver
  96.      *  3 == 3 wire bidirectional
  97.      *  4 == 4 wire bidirectional
  98.      *  6 == 6 wire unidirectional (or TLL)
  99.      */
  100.     u8        pins[3];
  101. };
  102.  
  103. struct omap_lcd_config {
  104.     char panel_name[16];
  105.     char ctrl_name[16];
  106.     s16  nreset_gpio;
  107.     u8   data_lines;
  108. };
  109.  
  110. struct device;
  111. struct fb_info;
  112. struct omap_backlight_config {
  113.     int default_intensity;
  114.     int (*set_power)(struct device *dev, int state);
  115.     int (*check_fb)(struct fb_info *fb);
  116. };
  117.  
  118. struct omap_fbmem_config {
  119.     u32 start;
  120.     u32 size;
  121. };
  122.  
  123. struct omap_pwm_led_platform_data {
  124.     const char *name;
  125.     int intensity_timer;
  126.     int blink_timer;
  127.     void (*set_power)(struct omap_pwm_led_platform_data *self, int on_off);
  128. };
  129.  
  130. /* See arch/arm/plat-omap/include/mach/gpio-switch.h for definitions */
  131. struct omap_gpio_switch_config {
  132.     char name[12];
  133.     u16 gpio;
  134.     int flags:4;
  135.     int type:4;
  136.     int key_code:24; /* Linux key code */
  137. };
  138.  
  139. struct omap_uart_config {
  140.     /* Bit field of UARTs present; bit 0 --> UART1 */
  141.     unsigned int enabled_uarts;
  142. };
  143.  
  144.  
  145. struct omap_flash_part_config {
  146.     char part_table[0];
  147. };
  148.  
  149. struct omap_boot_reason_config {
  150.     char reason_str[12];
  151. };
  152.  
  153. struct omap_version_config {
  154.     char component[12];
  155.     char version[12];
  156. };
  157.  
  158.  
  159. #include <mach/board-nokia.h>
  160.  
  161. struct omap_board_config_entry {
  162.     u16 tag;
  163.     u16 len;
  164.     u8  data[0];
  165. };
  166.  
  167. struct omap_board_config_kernel {
  168.     u16 tag;
  169.     const void *data;
  170. };
  171.  
  172. extern const void *__omap_get_config(u16 tag, size_t len, int nr);
  173.  
  174. #define omap_get_config(tag, type) \
  175.     ((const type *) __omap_get_config((tag), sizeof(type), 0))
  176. #define omap_get_nr_config(tag, type, nr) \
  177.     ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
  178.  
  179. extern const void *omap_get_var_config(u16 tag, size_t *len);
  180.  
  181. extern struct omap_board_config_kernel *omap_board_config;
  182. extern int omap_board_config_size;
  183.  
  184.  
  185. /* for TI reference platforms sharing the same debug card */
  186. extern int debug_card_init(u32 addr, unsigned gpio);
  187.  
  188. #endif
  189.